home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960209-19960425 / 000040_news@columbia.edu _Sun Feb 18 12:36:33 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id MAA02515 for <kermit.misc@watsun>; Sun, 18 Feb 1996 12:36:32 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id MAA16918 for kermit.misc@watsun; Sun, 18 Feb 1996 12:36:30 -0500 (EST)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Status line disappears in MSKERMIT 3.14
  8. Date: 18 Feb 1996 17:36:22 GMT
  9. Organization: Columbia University
  10. Lines: 22
  11. Message-ID: <4g7o2m$ggk@apakabar.cc.columbia.edu>
  12. References: <4g5oae$ag9@oravannahka.Helsinki.FI>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <4g5oae$ag9@oravannahka.Helsinki.FI>,
  16. Tomas Linden <tlinden@cc.Helsinki.FI> wrote:
  17. : I'm using MSKERMIT 3.14 to connect to DEC Alphas which are running OSF/1
  18. : V3.2A (Revision 17). If Kermit is emulating a VT102 or VT320 and I run
  19. : any command which calls the more pager the status line in Kermit is
  20. : overwritten when the page is full and more writes its prompt at the
  21. : bottom of the screen. The command stty reports correctly that I have a
  22. : screen size of 24 * 80. After that the status line has been overwritten,
  23. : the cursor usually goes back to line 24 as it should. I don't see this
  24. : problem on any other machines that I also use.
  25. : Is this a bug in Kermit or is it something wrong with OSF/1? Is there a
  26. : fix for this problem?
  27. It is a bug in OSF/1 (Digital UNIX) -- it thinks you have one more screen
  28. line than however many you tell it you have.  So you have to tell it that
  29. you have one less screen line than you really have (for Kermit purposes,
  30. two less, counting the status line):
  31.  
  32.   stty rows 23
  33.  
  34. - Frank